Following steps that help you to customize 404 not found page
Step 1: Create a new view file to customize 404 files
Filename :-> 404.blade.php
File Path :-> /resources/views/errors/404.blade.php
Example for bootstrap 4 layout
@extends('layouts.app') @section('title','404')
@section('content')
<!-- example for bootstrap 4 layout -->
<div class="page-wrap d-flex flex-row align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<span class="display-1 d-block">404</span>
<div class="mb-4 lead">The page you are looking for was not found.</div>
<a href="{{ url('/')}}" class="btn btn-link">Back to Home</a>
</div>
</div>
</div>
</div>
@endsection
We are Recommending you:
- Laravel 7 multi auth login
- How to generate dynamic real time sitemap.xml file in Laravel 8
- How to change timezone in laravel 8
- Laravel's .htaccess to remove "public" from URL
- Integrate Zoho SMTP Mail Configurations in Laravel?
- Laravel 8 .htaccess file for php 8
- Why Use the Repository Pattern in a Laravel Application
- How to use soft delete in Laravel?
- Laravel remove public from url
Step Out of Your Comfort Zone: 10 Powerful...
Is Mobile Reels Harming Our Children? Here's...
Simple body language tricks1. Stand with...
Best Free Websites to Learn CodingIf you...
these are following steps to remove...
Zip is a command-line utility tool used for...
To place INR currency symbol in pdf while...
User experience (UX) plays a vital role in...